home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / rmail / Makefile.hpux next >
Encoding:
Makefile  |  1990-06-24  |  1.3 KB  |  44 lines

  1. #
  2. # Copyright (c) 1988 Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation,
  8. # advertising materials, and other materials related to such
  9. # distribution and use acknowledge that the software was developed
  10. # by the University of California, Berkeley.  The name of the
  11. # University may not be used to endorse or promote products derived
  12. # from this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14. # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15. # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. #    @(#)Makefile    5.5 (Berkeley) 9/20/88
  18. #
  19. CFLAGS=    -O -I.
  20. ALL=    rmail
  21. SRCS=    rmail.c
  22. OBJS=    rmail.o
  23. MAN=    rmail.1
  24.  
  25. all: ${ALL}
  26.  
  27. rmail:
  28.     ${CC} ${CFLAGS} -o $@ $@.c -lBSD
  29.  
  30. clean:
  31.     rm -f core ${ALL} ${OBJS}
  32.  
  33. cleandir: clean
  34.     rm -f ${MAN} tags .depend
  35.  
  36. depend: ${SRCS}
  37.     mkdep -p ${CFLAGS} ${SRCS}
  38.  
  39. install: ${ALL} ${MAN}
  40.     install -o -f ${DESTDIR}/bin -u root -g bin rmail
  41.     chmod 755 ${DESTDIR}/bin/rmail
  42.     install -o -f ${DESTDIR}/usr/man/man1 -u bin -g bin rmail.1
  43.     (cd ${DESTDIR}/usr/man/man1; chmod 444 ${MAN})
  44.